home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / devNet.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  4KB  |  102 lines

  1. /*
  2.  * devNet.h --
  3.  *
  4.  *    This defines the interface to the file system net device.
  5.  *
  6.  * Copyright 1985, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/devNet.h,v 9.4 91/04/16 17:12:56 jhh Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVNET
  20. #define _DEVNET
  21.  
  22. #include <sprite.h>
  23. #include <user/fs.h>
  24. #include <fs.h>
  25.  
  26. /*
  27.  * These macros are used to access the information in the unit of the
  28.  * device. The NetType is used to determine the type of the network
  29.  * interface.  See net.h for definitions.  The Number is used to determine
  30.  * which interface to open.  Interfaces of the same type are numbered
  31.  * consecutively as they are attached, starting at 0.  The Proto information
  32.  * is used to determine the type of packets the device handles.  See
  33.  * below.
  34.  */
  35.  
  36. #define DEV_NET_NETTYPE_MASK        0xf000
  37. #define DEV_NET_NETTYPE_SHIFT         12
  38. #define DEV_NET_NUMBER_MASK        0xf00
  39. #define DEV_NET_NUMBER_SHIFT        8
  40. #define DEV_NET_PROTO_MASK        0xff
  41. #define DEV_NET_PROTO_SHIFT        0
  42.  
  43. #define DEV_NET_NETTYPE_FROM_UNIT(unit) \
  44.     (Net_NetworkType) ((DEV_NET_NETTYPE_MASK & (unit)) >> DEV_NET_NETTYPE_SHIFT)
  45.  
  46. #define DEV_NET_NUMBER_FROM_UNIT(unit) \
  47.     (int) ((DEV_NET_NUMBER_MASK & (unit)) >> DEV_NET_NUMBER_SHIFT)
  48.  
  49. #define DEV_NET_PROTO_FROM_UNIT(unit) \
  50.     (int) ((DEV_NET_PROTO_MASK & (unit)) >> DEV_NET_PROTO_SHIFT)
  51.  
  52. /*
  53.  * We set a high bit in the unit so we can distinguish new unit values
  54.  * from old.
  55.  */
  56.  
  57. #define DEV_NET_COMPAT_BIT    0x4000
  58.  
  59. /*
  60.  * The protocol field in the device unit number is used to select which
  61.  * packets the device handles.  The following are the legal values for
  62.  * the protocol field. Note that the packets handled by a device is also
  63.  * dependent on the type of network associated with the device, so it is
  64.  * ok for the protocol values to overlap between different types of
  65.  * networks.
  66.  */
  67.  
  68. #define DEV_NET_PROTO_NONE    0x0    /* If the protocol field is set
  69.                      * to this value then read/write
  70.                      * are not supported on the device,
  71.                      * but ioctls are. */
  72. #define DEV_NET_PROTO_ARP    0x1    /* Arp packets. */
  73. #define DEV_NET_PROTO_RARP    0x2    /* Rarp packets. */
  74. #define DEV_NET_PROTO_IP    0x3    /* IP packets. */
  75. #define DEV_NET_PROTO_DEBUG    0x4    /* Sprite debugger packets. */
  76. #define DEV_NET_PROTO_MOP    0x5    /* MOP packets. */
  77.  
  78. #define DEV_NET_NUM_PROTO    6
  79.  
  80. /*
  81.  * Forward routines.
  82.  */
  83.  
  84. extern ReturnStatus DevNet_FsOpen _ARGS_((Fs_Device *devicePtr, int useFlags,
  85.     Fs_NotifyToken data, int *flagsPtr));
  86. extern ReturnStatus DevNet_FsReopen _ARGS_((Fs_Device *devicePtr, int refs,
  87.     int writers, Fs_NotifyToken data, int *flagsPtr));
  88. extern ReturnStatus DevNet_FsRead _ARGS_((Fs_Device *devicePtr,
  89.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  90. extern ReturnStatus DevNet_FsWrite _ARGS_((Fs_Device *devicePtr,
  91.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  92. extern ReturnStatus DevNet_FsClose _ARGS_((Fs_Device *devicePtr, int useFlags,
  93.     int openCount, int writerCount));
  94. extern ReturnStatus DevNet_FsSelect _ARGS_((Fs_Device *devicePtr, int *readPtr,
  95.     int *writePtr, int *exceptPtr));
  96. extern ReturnStatus DevNet_FsIOControl _ARGS_((Fs_Device *devicePtr,
  97.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  98. extern void DevNetEtherHandler _ARGS_((Address packetPtr, int size));
  99.  
  100. #endif /* _DEVNET */
  101.  
  102.